home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / Files / MacTechNotes / Platforms & Tools / Stand-Alone Code Folder / DBFKEYƒ / DebugKey.a next >
Encoding:
Text File  |  1990-07-24  |  341 b   |  20 lines  |  [TEXT/MPS ]

  1. ; File: DebugKey.a
  2. ;
  3. ; An FKEY to invoke the debugger via command-shift-8
  4. ;
  5. DebugKey    MAIN
  6.  
  7.             BRA.S     CallDB    ;Invoke the debugger
  8.  
  9.             ;standard header
  10.  
  11.             DC.W     $0000       ;flags
  12.             DC.L     'FKEY'    ;'FKEY' is 464B4559 hex
  13.             DC.W     $0008       ;FKEY Number
  14.             DC.W     $0000       ;Version number
  15.  
  16. CallDB        DC.W     $A9FF       ;Debugger trap
  17.             RTS
  18.  
  19.             END
  20.